/**
 * Ming Ye, Zhou's Reset CSS v2.0 
 * Determine on 2019.6.22 23:00
 */
@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
/* strong, */
sub,
sup,
tt,
var,
/* b, */
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tfoot,
thead,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: inherit;
  font-weight: normal;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul,
li {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  word-wrap: break-word;
  /* 允许长单词换行到下一行 */
  word-break: break-all;
  /* 允许在单词内换行 */
}

/* custom */

* {
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  transition: all 0.3s linear;
}

html,
body {
  width: 100%;
  font-size: 0.83vw;
  line-height: 2.1em;
  color: #555555;
  font-family: "Microsoft YaHei", "Arial", "微软雅黑", "黑体", "宋体",
    sans-serif;
}

@media screen and (max-width: 1199px) {

  html,
  body {
    font-size: 0.24rem;
  }
}

html {
  overflow-y: scroll;
}

body {
  -webkit-text-size-adjust: none;
  /* chrome可以设置比12px更小的字体 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* ios定义默认点击背景色 -> 仅限移动端 */
}

button,
input,
textarea,
select {
  padding: 0;
  outline: none;
  -webkit-appearance: none;
  word-wrap: break-word;
  /* 允许长单词换行到下一行 */
  word-break: break-all;
  /* 允许在单词内换行 */
  vertical-align: middle;
  font-size: 100%;
  font-family: "Arial", "Microsoft YaHei", "黑体", "宋体", "微软雅黑",
    sans-serif;
}

textarea {
  resize: none;
  /* 去除缩放按钮 */
}

img {
  border: 0;
  vertical-align: middle;
}

a {
  color: #555555;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #2182E1;
  text-decoration: none;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical {
  height: 0;
  background-color: #a5a5a5;
  -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #2182E1;
}

::-webkit-scrollbar-thumb:horizontal {
  width: 0;
  background-color: #a5a5a5;
  -webkit-border-radius: 0;
}

/* clear */

.clearfix::before,
.clearfix::after {
  clear: both;
  content: "";
  display: block;
  margin: 0;
  padding: 0;
  font-size: 0;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.clearfix {
  *zoom: 1;
}

/* Flexible Box */

.box {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.box_vertical {
  display: box;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}

/* flex换行 */

.flex_wrap {
  flex-wrap: wrap;
}

/* flex主轴对齐 */

.justify_center {
  justify-content: center;
}

.justify_around {
  justify-content: space-around;
}

.justify_between {
  justify-content: space-between;
}

/* flex侧轴对齐 */

.items_center {
  align-items: center;
}


@font-face {
  font-family: "REGULAR";
  src: url("../font/AGARAMONDPRO-REGULAR.OTF");
}

@font-face {
  font-family: "GEORGIA";
  src: url("../font/GEORGIA.TTF");
}

@font-face {
  font-family: "Geometric";
  src: url("../font/tt0661m_.TTF");
}

@font-face {
  font-family: "Italic";
  src: url("../font/TT0130M_.TTF");
}